473,420 Members | 4,530 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,420 software developers and data experts.

VB.NET: backspace button code?

hello.

i have written a calculator program in VB.net as im still new and working things out i have a tiny problem. i have 10 buttons zero to nine, a decimal button, plus button, equals button, textbox display, reset button and a backspace button.

ive done everything except the backspace button. (say if i click a wrong number, i want to go back and click a different 1) but i have no idea what the code is and how i do it.

thanks, help apprechiated :)
Oct 26 '06 #1
8 42599
albertw
267 100+
hello.

i have written a calculator program in VB.net as im still new and working things out i have a tiny problem. i have 10 buttons zero to nine, a decimal button, plus button, equals button, textbox display, reset button and a backspace button.

ive done everything except the backspace button. (say if i click a wrong number, i want to go back and click a different 1) but i have no idea what the code is and how i do it.

thanks, help apprechiated :)
hi

backspace is same as Chr(8)
Oct 26 '06 #2
hi

backspace is same as Chr(8)

okay thanks. but what is the code for the button?, havent used chr before
Oct 26 '06 #3
albertw
267 100+
okay thanks. but what is the code for the button?, havent used chr before
hi
you can use the _keydown method

Expand|Select|Wrap|Line Numbers
  1. Private Sub AnObject_KeyDown(KeyCode As Integer, Shift As Integer)
  2. If KeyCode = vbKeyBack Then
  3. .. enter your code here ...
  4. End If 
  5. End Sub
  6.  
or the _keypress method

Expand|Select|Wrap|Line Numbers
  1. Private Sub AnObject_KeyPress(KeyAscii As Integer)
  2. If KeyAscii = 8 Then
  3. .. enter your code here ...
  4. End If
  5. End Sub
  6.  
Oct 26 '06 #4
hi
you can use the _keydown method

Expand|Select|Wrap|Line Numbers
  1. Private Sub AnObject_KeyDown(KeyCode As Integer, Shift As Integer)
  2. If KeyCode = vbKeyBack Then
  3. .. enter your code here ...
  4. End If 
  5. End Sub
  6.  
or the _keypress method

Expand|Select|Wrap|Line Numbers
  1. Private Sub AnObject_KeyPress(KeyAscii As Integer)
  2. If KeyAscii = 8 Then
  3. .. enter your code here ...
  4. End If
  5. End Sub
  6.  
ohh, yeah it works, thats alot for your help :)
Oct 26 '06 #5
Hi .. all..
i am working on login page in maa project using vb.net.
in that after enterring the username if i press the enter i need that control should pass to the submit buton ..can any one give me the code plz
thanks in advance
tq
Jan 3 '07 #6
Private Sub txtUser_KeyPress(KeyAscii As Integer)
If KeyAscii < 48 Or KeyAscii > 122 Then
txtUser.Text = ""
MsgBox "Enter only alphabets", vbOKOnly
KeyAscii = 8
ElseIf KeyAscii = 58 Or KeyAscii = 63 Or KeyAscii = 59 Or KeyAscii = 60 Or KeyAscii = 61 Or KeyAscii = 62 Then
txtUser.Text = ""
MsgBox "Enter only alphabets", vbOKOnly
KeyAscii = 8
End If
i want 2 make my backspace key work normally wat code should i modify or any better way 2 proceed
Aug 15 '07 #7
can u reply the inner code 4 this 2
Private Sub AnObject_KeyPress(KeyAscii As Integer)
If KeyAscii = 8 Then
.. enter your code here ...
End If
End Sub
Aug 15 '07 #8
@korndevil666
hi i am reading your problem ........
you can make one button in the code view and change name=bbackspace then its text property backspace.in property window.....now clicked backspace button
AND USE FOLLOWING CODE
Private Sub bbackspace_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles bbackspace.Click
Dim d As New Integer

If (TextBox1.Text.Length > 0) Then
d = TextBox1.Text.Length
TextBox1.Text = TextBox1.Text.Remove(d - 1, 1)




End If





End Sub
Jul 10 '09 #9

Sign in to post your reply or Sign up for a free account.

Similar topics

1
by: gal20 | last post by:
In my login page I have 2 textbox and one submit button. I also have a keypad for users to enter text to the textbox. I need the coding for backspace button that can be used for both textbox. The...
1
by: ACaunter | last post by:
Hi, I was wondering if there was asp.net webform (serverside) code which will refresh the page. I get a download dialog box that keeps poppin up everytime i click on any buttons on my page and i...
7
by: R.A.M. | last post by:
Hello I have a question to .NET programmers about code conversion from VB6 to C#.NET: is it possible? how much work must be performed manually? Thank you very much for your answers. /RAM/ PS. By...
0
by: BarryM | last post by:
Hi, I have web form with 2 submit buttons. One has the PostBackUrl property set to another page, and the other has nothing and falls through to the default behaviour of posting back to it's...
5
by: manjitsarma | last post by:
I have changed the following original vb.net window application code Public Overrides Function SetTheme(ByRef frmObj As System.Windows.Forms) As Boolean into c#.net as-
66
by: Jon Skeet [C# MVP] | last post by:
I'm sure the net will be buzzing with this news fairly soon, but just in case anyone hasn't seen it yet: Microsoft are going to make the source code for the .NET framework (parts of it,...
1
by: Bully | last post by:
I want to wrap a .Net command button using COM Interop, and then use this usercontrol in VB6. Is this possible and has anybody tried it? Bully
4
by: Kratos2005 | last post by:
I have a ASP.Net Page with code behined in C#. as below <body> <form id="form1" runat="server"> <table align=center > <tr> <td> <asp:Label runat=server...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.